home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / commands.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  73 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''Execute shell commands via os.popen() and return status, output.
  5.  
  6. Interface summary:
  7.  
  8.        import commands
  9.  
  10.        outtext = commands.getoutput(cmd)
  11.        (exitstatus, outtext) = commands.getstatusoutput(cmd)
  12.        outtext = commands.getstatus(file)  # returns output of "ls -ld file"
  13.  
  14. A trailing newline is removed from the output string.
  15.  
  16. Encapsulates the basic operation:
  17.  
  18.       pipe = os.popen(\'{ \' + cmd + \'; } 2>&1\', \'r\')
  19.       text = pipe.read()
  20.       sts = pipe.close()
  21.  
  22.  [Note:  it would be nice to add functions to interpret the exit status.]
  23. '''
  24. __all__ = [
  25.     'getstatusoutput',
  26.     'getoutput',
  27.     'getstatus']
  28.  
  29. def getstatus(file):
  30.     '''Return output of "ls -ld <file>" in a string.'''
  31.     return getoutput('ls -ld' + mkarg(file))
  32.  
  33.  
  34. def getoutput(cmd):
  35.     '''Return output (stdout or stderr) of executing cmd in a shell.'''
  36.     return getstatusoutput(cmd)[1]
  37.  
  38.  
  39. def getstatusoutput(cmd):
  40.     '''Return (status, output) of executing cmd in a shell.'''
  41.     import os as os
  42.     pipe = os.popen('{ ' + cmd + '; } 2>&1', 'r')
  43.     text = pipe.read()
  44.     sts = pipe.close()
  45.     if sts is None:
  46.         sts = 0
  47.     
  48.     if text[-1:] == '\n':
  49.         text = text[:-1]
  50.     
  51.     return (sts, text)
  52.  
  53.  
  54. def mk2arg(head, x):
  55.     import os
  56.     return mkarg(os.path.join(head, x))
  57.  
  58.  
  59. def mkarg(x):
  60.     if "'" not in x:
  61.         return " '" + x + "'"
  62.     
  63.     s = ' "'
  64.     for c in x:
  65.         if c in '\\$"`':
  66.             s = s + '\\'
  67.         
  68.         s = s + c
  69.     
  70.     s = s + '"'
  71.     return s
  72.  
  73.